
[dbo].[ContactOfferingRef]
CREATE TABLE [dbo].[ContactOfferingRef]
(
[ContactOfferingKey] [uniqueidentifier] NOT NULL,
[ContactOfferingDesc] [nvarchar] (30) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL
) ON [PRIMARY]
GO
ALTER TABLE [dbo].[ContactOfferingRef] ADD CONSTRAINT [PK_ContactOfferingRef] PRIMARY KEY CLUSTERED ([ContactOfferingKey]) ON [PRIMARY]
GO
ALTER TABLE [dbo].[ContactOfferingRef] ADD CONSTRAINT [AK_ContactOfferingRef_ContactOfferingDesc] UNIQUE NONCLUSTERED ([ContactOfferingDesc]) ON [PRIMARY]
GO